Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | /* |
||
59 | getAllCookieStores: function (details) { |
||
60 | if (API.promise) { |
||
61 | return API.api.cookies.getAllCookieStores(details); |
||
62 | } |
||
63 | else { |
||
64 | return new C_Promise(function () { |
||
65 | API.api.cookies.getAllCookieStores(details, (function (cookie) { |
||
66 | this.call_then(cookie); |
||
67 | }).bind(this)); |
||
68 | }); |
||
69 | } |
||
70 | } |
||
71 | }; |